home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- # Test for bug reported by Jim Meyering:
- # automake-0.29 didn't handle this line properly.
- # LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
-
- . $srcdir/defs || exit 1
-
- cat > configure.in << 'END'
- PACKAGE=nonesuch
- VERSION=nonesuch
- AC_ARG_PROGRAM
- AC_PROG_INSTALL
- AC_PROG_RANLIB
- LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
- AC_OUTPUT(Makefile)
- END
-
- cat > Makefile.am << 'END'
- noinst_LIBRARIES = tu
- tu_SOURCES =
- tu_LIBADD = @LIBOBJS@
- END
-
- : > fsusage.c
- : > mountlist.c
-
- $AUTOMAKE
-